Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ALS-6265] Add any record of multi support to time series processor #108

Merged
merged 1 commit into from
Jun 14, 2024

Conversation

Luke-Sikina
Copy link
Member

No description provided.

@Luke-Sikina Luke-Sikina added the bug Something isn't working label Jun 14, 2024
@Luke-Sikina Luke-Sikina requested a review from ramari16 June 14, 2024 15:34
@@ -94,6 +95,7 @@ private void exportTimeData(Query query, AsyncResult result, TreeSet<Integer> id
//get a list of all fields mentioned in the query; export all data associated with any included field
List<String> pathList = new LinkedList<String>();
pathList.addAll(query.getAnyRecordOf());
pathList.addAll(query.getAnyRecordOfMulti().stream().flatMap(Collection::stream).collect(Collectors.toList()));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is going to exponentially increase the data being returned in some cases. Is performance a worry here? And do people really expect to get all of this data back?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I mean, as it stands, when you request data from an any record of multi query, you get nothing back. We can deal with slow exports in GIC; as long as HPDS doesn't run oom, it doesn't really matter.

@Luke-Sikina Luke-Sikina merged commit 3e6771a into cool-counts Jun 14, 2024
4 checks passed
@Luke-Sikina Luke-Sikina deleted the any-record-of-fix branch June 14, 2024 18:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants